home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
FILENO.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
10 lines
/*
** return file number associated with stream
*/
#define FILE int
#include "streamio.h"
fileno(stream) FILE *stream; {
return stream[_IOB_FD];
}